home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / os-probes / mounted / 10freedos next >
Text File  |  2004-10-20  |  439b  |  23 lines

  1. #!/bin/sh
  2.  
  3. . /usr/share/os-prober/common.sh
  4.  
  5. partition=$1
  6. mpoint=$2
  7. type=$3
  8.  
  9. # Weed out stuff that doesn't apply to us
  10. case "$type" in
  11.   vfat) debug "$1 is a FAT32 partition" ;;
  12.   msdos) debug "$1 is a FAT16 partition" ;;
  13.   *) debug "$1 is not a FAT partition: exiting"; exit 1 ;;
  14. esac
  15.  
  16. if [ -e "$2/kernel.sys" -a -e "$2/command.com" ]; then
  17.   label=$(count_next_label FreeDOS)
  18.   result "$1:FreeDOS:$label:chain"
  19.   exit 0
  20. else
  21.   exit 1
  22. fi
  23.